home *** CD-ROM | disk | FTP | other *** search
/ CD School House 9 / CD School House 9.0 - Wayzata Technology (1994).iso / pc / dos / math / edudrils / chkfile.bat next >
DOS Batch File  |  1994-05-20  |  186b  |  15 lines

  1. @echo off
  2. CLS
  3. if exist %1 goto ask
  4. GOTO quit
  5. : ask
  6. echo   File already exists. Overwrite?
  7. input (Y or N)
  8. if %ans%==Y goto delete
  9. GOTO quit
  10. : delete
  11. del %1
  12. : quit
  13. set ans=
  14.  
  15.